/* Selectores de Atributos */
a[target] {
  background-color: yellow;
}

a[target="_blank"] {
  background-color: orange;
}

[title~="flower"] {
  border: 5px solid yellow;
}

[class|="top"] {
  background: lightgreen;
}

[class^="top"] {
  background: lightblue;
}

[class$="test"] {
  background: lightpink;
}

[class*="te"] {
  background: lightgray;
}

input[type="text"] {
  width: 150px;
  display: block;
  margin-bottom: 10px;
  background-color: yellow;
}

input[type="button"] {
  width: 120px;
  margin-left: 35px;
  display: block;
}
